﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: #f8faff;
  color: #0f172a;
}


/* NAVBAR */
.navbar {
  padding: 15px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 250, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  gap: 10px;
  height: 40px;
  width: auto;
}


nav a {
  margin: 0 14px;
  color: #6b7280;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
}

nav .active {
  color: #4f5dff;
  border-bottom: 2px solid #4f5dff;
  padding-bottom: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #0f172a;
}


.primary-btn {
  background: linear-gradient(135deg, #4f5dff, #6c7cff);
  border: none;
  padding: 15px 25px;
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.1rem;
}



/* HERO */
.hero {
  padding: 140px 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0e7ff;
  color: #4f5dff;
  padding: 10px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: #4f5dff;
  border-radius: 50%;
}

.hero-left h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #4f5dff;
}

.hero-left p {
  max-width: 480px;
  color: #6b7280;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.outline-btn {
  background: white;
  border: 2px solid #e5e7eb;
  padding: 12px 22px;
  border-radius: 14px;
  display: flex;
  gap: 8px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 93, 255, 0.35);
}

.outline-btn:hover {
  background: #f1f5ff;
}



/* RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}


/* MAP */
.map-wrapper {
  width: 500px;
  height: 500px;
  position: relative;
  background: linear-gradient(135deg, rgba(79, 93, 255, 0.85), rgba(139, 92, 246, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 45px;
  box-shadow: 0 30px 60px rgba(79, 93, 255, 0.25);
  overflow: hidden;
  animation: bgPulse 8s infinite alternate;
}

@keyframes bgPulse {
  0% {
    background-size: 100% 100%;
  }

  100% {
    background-size: 120% 120%;
  }
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-glow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 2;
}

/* ROUTES */
.route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6;
  animation: moveRoute 4s linear infinite;
}

@keyframes moveRoute {
  from {
    stroke-dashoffset: 60;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* NODES */
.node {
  fill: white;
  animation: pulse 2s infinite ease-in-out;
}

/* Stagger pulsing for nodes */
.node:nth-child(1) {
  animation-delay: 0s;
}

.node:nth-child(2) {
  animation-delay: 0.4s;
}

.node:nth-child(3) {
  animation-delay: 0.8s;
}

.node:nth-child(4) {
  animation-delay: 1.2s;
}

.node:nth-child(5) {
  animation-delay: 0.2s;
}

.node:nth-child(6) {
  animation-delay: 0.6s;
}

.node:nth-child(7) {
  animation-delay: 1.0s;
}

.node:nth-child(8) {
  animation-delay: 1.4s;
}

@keyframes pulse {
  0% {
    r: 4;
    opacity: 0.6;
  }

  50% {
    r: 7;
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
  }

  100% {
    r: 4;
    opacity: 0.6;
  }
}


.floating-card {
  position: absolute;
  top: 60px;
  right: -20px;
  background: white;
  padding: 14px;
  border-radius: 14px;
  color: #4f5dff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}



.active-riders {
  position: absolute;
  top: 40px;
  left: 20px;
  background: white;
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.active-riders h3 {
  color: #4f5dff;
  font-size: 26px;
}

/* STATS */
.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 90px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat .icon {
  width: 46px;
  height: 46px;
  background: #eef2ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f5dff;
}

.stat h4 {
  font-size: 28px;
}

.stat p {
  color: #6b7280;
  font-size: 14px;
}



.stat:hover {
  transform: translateY(-6px);
}

.stat:hover .icon {
  background: #4f5dff;
  color: white;
}


/* LIVE NETWORK */
.live-network {
  margin-left: auto;
  background: white;
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  gap: 12px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}


.active-riders {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.active-riders:hover,
.live-network:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.18);
}






/* ABOUT SECTION */
.about {
  padding: 120px 70px;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ABOUT VISUAL */
.about-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-visual.reveal {
  transform: translateX(-60px);
  opacity: 0;
}

.visual-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e0e7ff, #f3e8ff);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: pulse 6s infinite alternate;
}

.visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  width: 280px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
}

.visual-card.small {
  position: absolute;
  width: auto;
  bottom: 80px;
  right: 40px;
  padding: 15px 20px;
  z-index: 3;
  animation: float 4s ease-in-out infinite reverse;
}

.visual-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #4f5dff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.visual-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.visual-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* ABOUT CONTENT */
.about-content.reveal {
  transform: translateX(60px);
  opacity: 0;
}

.about-content .pill {
  display: inline-block;
  padding: 8px 18px;
  background: #e0e7ff;
  color: #4f5dff;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-content h2 span {
  color: #4f5dff;
}

.about-content p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-list {
  list-style: none;
  margin-bottom: 40px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #374151;
}

.about-list li i {
  color: #22c55e;
  width: 20px;
  height: 20px;
}

.about-content .primary-btn {
  display: inline-flex;
  width: fit-content;
}

/* COVERAGE SECTION */
.coverage {
  padding: 120px 70px;
  background: #f8faff;
}

.coverage-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.coverage-header .pill {
  display: inline-block;
  padding: 8px 18px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.coverage-header h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.coverage-header h2 span {
  color: #2563eb;
}

.coverage-header p {
  color: #6b7280;
  font-size: 17px;
}

/* GRID */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* STATE CARD */
.state-card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  /* Enchanced shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
}

.state-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1f2937;
}

.state-card p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.state-icon {
  color: #4f5dff;
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

/* Staggered Reveal Animation */
.state-card.active {
  opacity: 1;
  transform: translateY(0);
}

.state-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #4f5dff;
  box-shadow: 0 25px 50px rgba(79, 93, 255, 0.2);
  z-index: 10;
}

.state-card:hover h3 {
  color: #2563eb;
}

/* CSS-only staggered delays for up to 30 items */
.state-card:nth-child(1) {
  transition-delay: 0.05s;
}

.state-card:nth-child(2) {
  transition-delay: 0.10s;
}

.state-card:nth-child(3) {
  transition-delay: 0.15s;
}

.state-card:nth-child(4) {
  transition-delay: 0.20s;
}

.state-card:nth-child(5) {
  transition-delay: 0.25s;
}

.state-card:nth-child(6) {
  transition-delay: 0.30s;
}

.state-card:nth-child(7) {
  transition-delay: 0.35s;
}

.state-card:nth-child(8) {
  transition-delay: 0.40s;
}

.state-card:nth-child(9) {
  transition-delay: 0.45s;
}

.state-card:nth-child(10) {
  transition-delay: 0.50s;
}

.state-card:nth-child(11) {
  transition-delay: 0.55s;
}

.state-card:nth-child(12) {
  transition-delay: 0.60s;
}

.state-card:nth-child(13) {
  transition-delay: 0.65s;
}

.state-card:nth-child(14) {
  transition-delay: 0.70s;
}

.state-card:nth-child(15) {
  transition-delay: 0.75s;
}

.state-card:nth-child(16) {
  transition-delay: 0.80s;
}

.state-card:nth-child(17) {
  transition-delay: 0.85s;
}

.state-card:nth-child(18) {
  transition-delay: 0.90s;
}

.state-card:nth-child(19) {
  transition-delay: 0.95s;
}

.state-card:nth-child(20) {
  transition-delay: 1.00s;
}

.state-card:nth-child(21) {
  transition-delay: 1.05s;
}

.state-card:nth-child(22) {
  transition-delay: 1.10s;
}

.state-card:nth-child(23) {
  transition-delay: 1.15s;
}

.state-card:nth-child(24) {
  transition-delay: 1.20s;
}

.state-card:nth-child(25) {
  transition-delay: 1.25s;
}

.state-card:nth-child(26) {
  transition-delay: 1.30s;
}

.state-card:nth-child(27) {
  transition-delay: 1.35s;
}

.state-card:nth-child(28) {
  transition-delay: 1.40s;
}

.state-card:nth-child(29) {
  transition-delay: 1.45s;
}


/* PRICING SECTION */
.pricing {
  padding: 120px 70px;
  background: white;
}

.pricing-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.pricing-header .pill {
  display: inline-block;
  padding: 8px 18px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.pricing-header h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.pricing-header h2 span {
  color: #4f5dff;
}

.pricing-header p {
  color: #6b7280;
  font-size: 17px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}



.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pricing-card p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-card .price {
  margin-bottom: 30px;
}

.pricing-card .price h4 {
  font-size: 36px;
  color: #1f2937;
}

.pricing-card .price span {
  color: #6b7280;
  font-size: 14px;
}

.pricing-card .features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-card .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #374151;
  font-size: 15px;
}

.pricing-card .features li i {
  width: 18px;
  height: 18px;
  color: #22c55e;
}

.pricing-card button {
  width: 100%;
  justify-content: center;
}

/* Popular (Middle) Card Styles */
.pricing-card.popular {
  border: 2px solid #4f5dff;
  box-shadow: 0 25px 50px rgba(79, 93, 255, 0.15);
  transform: translateY(-20px) scale(1.05);
  z-index: 2;
}


.pricing-card.popular.active {
  transform: translateY(-20px) scale(1.05);
}



.pricing-card.popular.reveal {
  transform: translateY(20px) scale(1.05);
}


.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f5dff;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.pricing-card.active {
  opacity: 1;
  transform: translateY(0);
}


.pricing-card.popular.active {
  opacity: 1;
  transform: translateY(-20px) scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular:hover {
  transform: translateY(-25px) scale(1.05);
  box-shadow: 0 35px 60px rgba(79, 93, 255, 0.25);
}

/* Stagger reveals */
.pricing-card:nth-child(1) {
  transition-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  transition-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  transition-delay: 0.3s;
}


/* AUTHENTICATION PAGES */
.auth-hero {
  padding: 140px 20px 80px;
  background: #f8faff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-container {
  width: 100%;
  max-width: 500px;
}

.auth-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header .icon-circle {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  color: #4f5dff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.auth-header .icon-circle i {
  width: 32px;
  height: 32px;
}

.auth-header h2 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.auth-header h2 span {
  color: #4f5dff;
}

.auth-header p {
  color: #6b7280;
  font-size: 15px;
}

/* Auth Form Styles */
.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 48px;
  /* Left padding for icon */
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  border-color: #4f5dff;
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 93, 255, 0.1);
}

.input-wrapper input:focus+i,
.input-wrapper input:focus~i {
  /* If icon is after input, or before (handled by generic sibling for safety, though structure puts icon first) */
  color: #4f5dff;
}

/* Since icon is before input in HTML: */
.input-wrapper:focus-within i {
  color: #4f5dff;
}

.full-width {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  color: #6b7280;
  font-size: 14px;
}

.auth-footer a {
  color: #4f5dff;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Animation Override for Auth */
.auth-container.reveal {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DASHBOARD STYLES */
.dashboard-body {
  background: #f3f4f6;
  min-height: 100vh;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid #e5e7eb;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
}

.sidebar-header {
  padding: 10px 10px 40px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #6b7280;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav-item i {
  width: 20px;
  height: 20px;
}

.nav-item:hover,
.nav-item.active {
  background: #eff6ff;
  color: #4f5dff;
}

.nav-item .badge-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  margin-left: auto;
}

.logout {
  color: #ef4444;
}

.logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* MAIN CONTENT */
.main-content {
  flex-grow: 1;
  padding: 30px 40px;
  margin-left: 260px;
  /* Offset for sidebar */
}

/* DASHBOARD HEADER */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header-left h1 {
  font-size: 28px;
  color: #1f2937;
}

.header-left p {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.user-profile .avatar {
  width: 44px;
  height: 44px;
  background: #4f5dff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

/* TOGGLE SWITCH */
.status-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid #e5e7eb;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}

input:checked+.slider {
  background-color: #22c55e;
}

input:focus+.slider {
  box-shadow: 0 0 1px #22c55e;
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  width: 24px;
  height: 24px;
}

.stat-icon.pink {
  background: #fdf2f8;
  color: #db2777;
}

.stat-icon.blue {
  background: #eff6ff;
  color: #4f5dff;
}

.stat-icon.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.stat-icon.green {
  background: #ecfdf5;
  color: #059669;
}

.stat-info h3 {
  font-size: 20px;
  color: #1f2937;
  line-height: 1.2;
}

.stat-info p {
  font-size: 13px;
  color: #6b7280;
}

/* ACTION AREA */
.action-area {
  margin-bottom: 30px;
}

.state-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.state-card.waiting {
  background: linear-gradient(135deg, #4f5dff, #8b5cf6);
  color: white;
  position: relative;
  overflow: hidden;
}

.state-card.waiting h2 {
  font-size: 24px;
  margin-bottom: 8px;
  z-index: 2;
}

.state-card.waiting p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  z-index: 2;
}

.pulse-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.pulse-icon i {
  width: 40px;
  height: 40px;
}

.test-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  z-index: 2;
  background: transparent;
}

.test-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Active Order Card */
.active-order {
  padding: 0;
  text-align: left;
  display: block;
  overflow: hidden;
}

.order-header {
  background: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}

.order-badge {
  background: #dbeafe;
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.timer {
  font-family: monospace;
  font-size: 18px;
  color: #ef4444;
  font-weight: 700;
}

.order-details {
  padding: 30px;
}

.route-line {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.connector {
  position: absolute;
  left: 7px;
  /* Center of dot (14px/2) + border? */
  top: 10px;
  bottom: 40px;
  width: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.point .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.pickup .dot {
  border: 4px solid #4f5dff;
  background: white;
}

.dropoff .dot {
  background: #4f5dff;
}

.point .text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #1f2937;
}

.point .text p {
  color: #6b7280;
  font-size: 14px;
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8fafc;
  padding: 20px 30px;
  gap: 20px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item span {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item strong {
  font-size: 16px;
  color: #1f2937;
}

.order-actions {
  padding: 20px 30px;
  display: flex;
  gap: 16px;
}

.order-actions button {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.decline-btn {
  background: #fef2f2;
  color: #dc2626;
  border: none;
}

.decline-btn:hover {
  background: #fee2e2;
}

/* RECENT ACTIVITY */
.recent-activity h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1f2937;
}

.activity-list {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-details {
  flex-grow: 1;
}

.activity-details h4 {
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 2px;
}

.activity-details p {
  font-size: 13px;
  color: #9ca3af;
}

.activity-amount {
  font-weight: 600;
  color: #059669;
}

/* Pricing Calculation Subsection */
.pricing-calc {
  margin-top: 80px;
  background: #f9fafb;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.pricing-calc.active {
  opacity: 1;
  transform: translateY(0);
}

.pricing-calc h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

.calc-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.factor {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.factor .icon-circle {
  width: 60px;
  height: 60px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f5dff;
  margin-bottom: 20px;
}

.factor .icon-circle i {
  width: 28px;
  height: 28px;
}

.factor h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.factor p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 120px 0;
  background: #f8faff;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.testimonials-header .pill {
  display: inline-block;
  padding: 8px 18px;
  background: #e0e7ff;
  color: #4f5dff;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.testimonials-header h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.testimonials-header h2 span {
  color: #4f5dff;
}

.testimonials-header p {
  color: #6b7280;
  font-size: 17px;
}

/* CAROUSEL SLIDER */
.slider {
  margin: auto;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(400px * 12);
  animation: scroll 40s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-400px * 6));
  }
}

.testimonial-card {
  width: 360px;
  margin: 0 20px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

/* Hover Effect */
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(79, 93, 255, 0.15);
  border-color: #4f5dff;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-card .stars i {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card .quote {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card .user-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e7ff;
}

.testimonial-card .user-profile .info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}

.testimonial-card .user-profile .info span {
  font-size: 13px;
  color: #6b7280;
}

.services {
  padding: 120px 70px;
  background: #f1f5ff;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.services-header .pill {
  display: inline-block;
  padding: 8px 18px;
  background: #e0e7ff;
  color: #4f5dff;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.services-header h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.services-header h2 span {
  color: #6366f1;
}

.services-header p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;

}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.05));
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(79, 93, 255, 0.15);
  border-color: rgba(79, 93, 255, 0.3);
  z-index: 10;
}

.service-card:hover::after {
  opacity: 1;
}

/* SCROLL ANIMATIONS */
.reveal,
.service-card {
  transition: 1s cubic-bezier(0.5, 0, 0, 1);
}


.services-header.reveal {
  transform: translateY(60px);
  opacity: 0;
}


.service-card:nth-child(3n+1) {
  transform: translateX(60px);
}


.service-card:nth-child(2) {
  transform: translateY(-60px);
}


.service-card:nth-child(5) {
  transform: translateY(60px);
}


.service-card:nth-child(3n+3) {
  transform: translateX(-60px);
}


.reveal.active,
.service-card.active {
  transform: translate(0);
  opacity: 1;
}

/* ICON */
.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: white;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(10deg);
}

/* COLOR VARIANTS */
.service-card.purple .icon {
  background: linear-gradient(135deg, #7c5cff, #9f85ff);
}

.service-card.green .icon {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.service-card.orange .icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.service-card.purple-alt .icon {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}

.service-card.blue .icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.service-card.red .icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

/* TEXT */
.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  transform: translateY(10px);
  opacity: 0;
  animation: slideInText 0.5s ease forwards 0.3s;
}

.service-card p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  transform: translateY(10px);
  opacity: 0;
  animation: slideInText 0.5s ease forwards 0.4s;
}

@keyframes slideInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.learn-more {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f5dff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .learn-more {
  opacity: 1;
  transform: translateX(0);
}

/* CTA SECTION */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-image.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
  color: white;
  margin-top: 0;


  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.cta.active {
  opacity: 1;
  transform: translateY(0);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 800;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #e5e7eb;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #4f5dff;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.primary-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 93, 255, 0.3);
}

.outline-btn.white {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.outline-btn.white:hover {
  background: white;
  color: #1f2937;
  border-color: white;
}

/* FOOTER SECTION */
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 80px 70px 30px;
  position: relative;
  overflow: hidden;
}


.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#1f2937 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Brand */
.footer-brand .logo-area h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
}

.footer-brand .logo-area span.highlight {
  color: #4f5dff;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #4f5dff;
  transform: translateY(-3px);
}

.social-icon i {
  width: 18px;
  height: 18px;
}

/* Links */
.footer-links h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #4f5dff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links .badge {
  background: #4f5dff;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Newsletter */
.footer-newsletter h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-newsletter p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
  display: flex;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 20px;
  padding-right: 50px;
  border-radius: 12px;
  background: #1f2937;
  border: 1px solid #374151;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: #4f5dff;
}

.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #4f5dff;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #4338ca;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }


  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 30px 60px;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .map-wrapper {
    height: 300px;
  }

  .navbar {
    padding: 15px 20px;
  }






















}

/* ABOUT PAGE STYLES */
.page-hero {
  padding: 180px 70px 100px;
  background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
  color: #1f2937;
  line-height: 1.1;
}

.page-hero h1 span {
  color: #4f5dff;
}

.page-hero p {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.mission-section {
  padding: 100px 70px;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.mission-text h2 span {
  color: #4f5dff;
}

.mission-text p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.mission-stats .stat h4 {
  font-size: 32px;
  color: #1f2937;
  font-weight: 800;
}

.mission-stats .stat span {
  color: #6b7280;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-image .image-box {
  background: #f1f5ff;
  height: 400px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mission-image .floating-icon {
  width: 100px;
  height: 100px;
  color: #4f5dff;
  opacity: 0.2;
}

/* Values */
.values-section {
  padding: 100px 70px;
  background: #f8faff;
}

.section-header.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card .icon-circle {
  width: 60px;
  height: 60px;
  background: #e0e7ff;
  color: #4f5dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

/* Team */
.team-section {
  padding: 100px 70px;
  background: white;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  text-align: center;
}

.team-card .avatar-circle {
  width: 120px;
  height: 120px;
  background: #e5e7eb;
  border-radius: 50%;
  margin: 0 auto 20px;
  /* Placeholder image logic, can be replaced */
  background-image: url('images/image-1.webp');
  /* Reuse for demo */
  background-size: cover;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card span {
  color: #4f5dff;
  font-size: 14px;
  font-weight: 600;
}




/* About Responsive */
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* REVEAL ANIMATIONS (ABOUT PAGE) */
.hero-content.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.mission-text.reveal {
  opacity: 0;
  transform: translateX(-60px);
}

.mission-image.reveal {
  opacity: 0;
  transform: translateX(60px);
}

.value-card.reveal,
.team-card.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Staggered Delays for About Cards */
.value-card:nth-child(2) {
  transition-delay: 0.15s;
}

.value-card:nth-child(3) {
  transition-delay: 0.3s;
}

.team-card:nth-child(2) {
  transition-delay: 0.15s;
}

.team-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Active States for Reveal */
.reveal.active,
.services-hero .hero-content.reveal.active,
.process-step.reveal.active,
.fleet-card.reveal.active,
.contact-hero .hero-content.reveal.active,
.contact-form-container.reveal.active,
.info-card.reveal.active,
.pricing-hero .hero-content.reveal.active,
.faq-grid.reveal.active {
  opacity: 1 !important;
  transform: translate(0) !important;
}

@keyframes slideInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team Card Hover */
.team-card .avatar-circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .avatar-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(79, 93, 255, 0.2);
}

.team-card:hover h4 {
  color: #4f5dff;
  transition: color 0.3s ease;
}

/* Mission Stats Interactive */
.mission-stats .stat {
  transition: transform 0.3s ease;
  cursor: default;
}

.mission-stats .stat:hover {
  transform: translateY(-5px);
}

/* Floating Icon Animation */
@keyframes floatIcon {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.4;
  }

  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
}

.mission-image .floating-icon {
  animation: floatIcon 6s ease-in-out infinite;
}

/* SERVICES PAGE STYLES */
.services-hero {
  padding: 180px 70px 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  text-align: center;
  color: white;
}

.services-hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.services-hero h1 span {
  color: #818cf8;
}

.services-hero p {
  font-size: 20px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.services-detail {
  padding: 100px 70px;
  background: white;
}

.services-detail .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Process Section */
.process-section {
  padding: 100px 70px;
  background: #f8faff;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #4f5dff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(79, 93, 255, 0.4);
}

.process-step .icon-box {
  width: 80px;
  height: 80px;
  background: white;
  color: #4f5dff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.process-step:hover .icon-box {
  transform: translateY(-10px);
}

.process-step i {
  width: 32px;
  height: 32px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
  padding: 100px 70px;
  background: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.fleet-card {
  background: #f8faff;
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.fleet-card:hover {
  background: white;
  border-color: #e0e7ff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.fleet-icon {
  width: 100px;
  height: 100px;
  background: #e0e7ff;
  color: #4f5dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.fleet-icon i {
  width: 48px;
  height: 48px;
}

.fleet-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.fleet-card p {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.fleet-card span {
  color: #6b7280;
  font-size: 14px;
}

/* Staggered Delays for Process & Fleet */
.process-step:nth-child(2) {
  transition-delay: 0.1s;
}

.process-step:nth-child(3) {
  transition-delay: 0.2s;
}

.fleet-card:nth-child(2) {
  transition-delay: 0.15s;
}

.fleet-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* REVEAL OVERRIDES FOR SERVICES */
.services-hero .hero-content.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.process-step.reveal,
.fleet-card.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Services Responsive */
@media (max-width: 900px) {

  .process-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-hero h1 {
    font-size: 42px;
  }
}

/* PRICING PAGE STYLES */
.pricing-hero {
  padding: 180px 70px 100px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  text-align: center;
}

.pricing-hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
  color: #1f2937;
  line-height: 1.1;
}

.pricing-hero h1 span {
  color: #4f5dff;
}

.pricing-hero p {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-content {
  padding: 100px 70px;
  background: white;
}

.pricing-calc-section {
  padding: 100px 70px;
  background: #f8faff;
}

/* FAQ Section */
.faq-section {
  padding: 100px 70px;
  background: white;
}

.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #4f5dff;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 15px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
}

/* Specific reveal overrides for Pricing Page */
.pricing-hero .hero-content.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.faq-grid.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive updates */
@media (max-width: 900px) {
  .pricing-hero h1 {
    font-size: 42px;
  }
}

/* CONTACT PAGE STYLES */
.contact-hero {
  padding: 180px 70px 100px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  text-align: center;
}

.contact-hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
  color: #1f2937;
}

.contact-hero h1 span {
  color: #4f5dff;
}

.contact-section {
  padding: 100px 70px;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f5dff;
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 93, 255, 0.1);
}

.full-width {
  width: 100%;
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #f8faff;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateX(10px);
}

.info-card .icon-circle {
  width: 60px;
  height: 60px;
  background: white;
  color: #4f5dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.info-text p {
  color: #6b7280;
  font-size: 15px;
}

.social-box {
  padding: 30px;
  text-align: center;
}

.social-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Specific reveal overrides for Contact Page */
.contact-hero .hero-content.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.contact-form-container.reveal {
  opacity: 0;
  transform: translateX(-40px);
}

.info-card.reveal {
  opacity: 0;
  transform: translateX(40px);
}

/* Staggered Delays for Info Cards */
.info-card:nth-child(2) {
  transition-delay: 0.15s;
}

.info-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }
}




/* AUTHENTICATION PAGES (LOGIN/SIGNUP) */
.auth-hero {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.auth-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 93, 255, 0.1) 0%, rgba(79, 93, 255, 0) 70%);
  z-index: 0;
}

.auth-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.auth-card {
  background: white;
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(79, 93, 255, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header .icon-circle {
  width: 70px;
  height: 70px;
  background: #f1f5ff;
  color: #4f5dff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.auth-header h2 {
  font-size: 32px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 8px;
}

.auth-header h2 span {
  color: #4f5dff;
}

.auth-header p {
  color: #64748b;
  font-size: 16px;
}

.auth-form .form-group {
  margin-bottom: 24px;
}

.auth-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  width: 20px;
  height: 20px;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #4f5dff;
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 93, 255, 0.1);
}

.auth-form .primary-btn.full-width {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 16px;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  color: #64748b;
}

.auth-footer a {
  color: #4f5dff;
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .auth-hero {
    padding-top: 100px;
  }
}


/* GET STARTED PAGE */
.gs-hero {
  padding: 180px 70px 80px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gs-container {
  max-width: 800px;
  margin: 0 auto;
}

.gs-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
}

.gs-hero h1 span {
  color: #4f5dff;
  position: relative;
}

.gs-hero p {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
}

/* SELECTION SECTION */
.selection-section {
  padding: 80px 70px 120px;
  background: white;
}

.selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.selection-card {
  background: white;
  border-radius: 32px;
  padding: 60px 50px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.selection-card.active {
  opacity: 1;
  transform: translateY(0);
}

.selection-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
  border-color: #4f5dff;
}

.card-visual {
  margin-bottom: 32px;
  position: relative;
}

.selection-card .icon-circle {
  width: 80px;
  height: 80px;
  background: #f1f5ff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f5dff;
  transition: all 0.5s ease;
}

.selection-card .icon-circle i {
  width: 40px;
  height: 40px;
}

.selection-card:hover .icon-circle {
  background: #4f5dff;
  color: white;
  transform: rotate(-10deg) scale(1.1);
}

.visual-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 93, 255, 0.1) 0%, rgba(79, 93, 255, 0) 70%);
  z-index: -1;
}

.selection-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0f172a;
}

.selection-card h2 span {
  color: #4f5dff;
}

.selection-card p {
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 16px;
}

.gs-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.gs-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #334155;
  font-weight: 500;
}

.gs-features li i {
  color: #22c55e;
  width: 20px;
  height: 20px;
}

.gs-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rider-btn {
  background: #0f172a;
  color: white;
}

.user-btn {
  background: #4f5dff;
  color: white;
}

.gs-btn:hover {
  transform: scale(1.02);
  gap: 20px;
}

.gs-btn i {
  width: 20px;
  height: 20px;
}

.selection-card.rider::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 50%);
}

.selection-card.user::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, rgba(79, 93, 255, 0.05) 0%, rgba(79, 93, 255, 0) 50%);
}

.selection-card:nth-child(1) {
  transition-delay: 0.1s;
}

.selection-card:nth-child(2) {
  transition-delay: 0.2s;
}

@media (max-width: 968px) {
  .selection-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .selection-section {
    padding: 60px 20px;
  }

  .gs-hero {
    padding: 140px 20px 60px;
  }

  .gs-hero h1 {
    font-size: 48px;
  }

  .selection-card {
    padding: 40px 30px;
  }
}


/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  .hero {
    padding: 120px 30px 60px;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .about,
  .services,
  .coverage,
  .pricing,
  .testimonials {
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    transition: transform 0.4s ease;
    transform: translateY(-150%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    margin: 0;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .nav-actions .primary-btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 50px;
  }

  .hero-left p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .map-wrapper {
    width: 100%;
    max-width: 320px;
    height: 320px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
  }

  .stat {
    flex: 1 1 140px;
    align-items: center;
    text-align: center;
  }

  .live-network {
    margin: 0 auto;
    width: 100%;
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 300px;
  }

  .services-grid,
  .pricing-grid,
  .mission-grid,
  .values-grid,
  .team-grid,
  .process-grid,
  .fleet-grid,
  .calc-factors,
  .faq-grid,
  .contact-grid,
  .selection-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
  }

  .mission-image {
    height: 300px;
  }

  .coverage-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }

  .footer-newsletter form {
    margin: 0 auto;
  }

  .active-riders,
  .floating-card,
  .visual-card.small {
    display: none;
  }

  .page-hero,
  .contact-hero,
  .pricing-hero,
  .services-hero,
  .gs-hero {
    padding: 120px 20px 60px !important;
  }

  .page-hero h1,
  .contact-hero h1,
  .pricing-hero h1,
  .services-hero h1,
  .gs-hero h1 {
    font-size: 34px !important;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 36px;
  }

  .primary-btn,
  .outline-btn {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    border-radius: 12px;
  }
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
  background: #f1f5f9;
}

.close-modal i {
  color: #0f172a;
}